home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / games_d / rtanksrc.zip / DTYPES.H < prev    next >
Text File  |  1995-03-07  |  232b  |  11 lines

  1. typedef unsigned char BYTE;
  2. typedef unsigned char byte;
  3. typedef unsigned short WORD;
  4. typedef signed long LONG;
  5. typedef unsigned long DWORD;
  6. typedef char * PSTR;
  7. typedef int BOOL;
  8.  
  9. #define TRUE  1
  10. #define FALSE 0
  11.